home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / info-service / www / src / midaswww-1.0 / midaswidget.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-11-16  |  430 b   |  14 lines

  1.  
  2. struct MidasWidget {
  3.     Widget               Widget;        /* This widget */
  4.     Widget               Map;           /* Widget in map */
  5.     struct MidasWidget  *Parent; 
  6.     struct MidasWidget  *HashChain;
  7.     Boolean              ShowChildren;  /* True if children in map */
  8.     List                *IngotList;
  9.     ListItem            *NameEntry; 
  10.     Boolean              Inited;
  11. };
  12.  
  13. typedef struct MidasWidget MidasWidget;
  14.